home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / cp-firewall-auth.nasl < prev    next >
Text File  |  2005-03-31  |  1KB  |  50 lines

  1. # This script was written by Yoav Goldberg <yoavg@securiteam.com>
  2.  
  3.  
  4. # (rd: description re-phrased)
  5.  
  6.  
  7. #
  8. # Body of a script
  9. #
  10. if(description)
  11. {
  12.  script_id(10675);
  13.  script_version ("$Revision: 1.6 $");
  14.  script_name(english:"CheckPoint Firewall-1 Telnet Authentication Detection");
  15.  script_description(english:"
  16. A Firewall-1 Client Authentication Server is running on this port.
  17.  
  18. Such an element allows an intruder to attempt to log into
  19. the remote network or to gather a list of valid user names
  20. by a brute-force attack.
  21.  
  22. Solution : if you do not use this service, disable it.
  23. Risk factor : Low");
  24.  
  25.  script_summary(english:"The remote CheckPoint Firewall-1 can be accessed via a telnet interface");
  26.  script_category(ACT_GATHER_INFO);
  27.  script_family(english:"Firewalls");
  28.  script_copyright(english:"This script is Copyright (C) 2001 SecuriTeam");
  29.  script_dependencies("find_service.nes");
  30.  script_require_ports(259);
  31.  exit(0);
  32. }
  33.  
  34. #
  35. # Actual script starts here
  36. #
  37. include("telnet_func.inc");
  38.  
  39. port = 259;
  40. if(get_port_state(259))
  41. {
  42.  data = get_telnet_banner(port: 259);
  43.  if(data)
  44.  {
  45.   if("Check Point FireWall-1 Client Authentication Server running on" >< data)
  46.       security_warning(259);
  47.  }
  48. }
  49.  
  50.